home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / prog / itsy.zip / ITSYBITS.H < prev    next >
C/C++ Source or Header  |  1993-02-24  |  2KB  |  52 lines

  1. /////////////////////////////////////////////////////////////////////////
  2. //
  3. //     Project:  ItsyBits Window Style
  4. //
  5. //      Module:  itsybits.h
  6. //
  7. //     Remarks:  Include file for the ItsyBits support module (itsybits.c)
  8. //
  9. /////////////////////////////////////////////////////////////////////////
  10.  
  11. #ifndef _ITSYBITS_H_
  12. #define _ITSYBITS_H_
  13.  
  14. #define IBS_HORZCAPTION    0x4000L
  15. #define IBS_VERTCAPTION    0x8000L
  16.  
  17. BOOL    WINAPI ibInit( HANDLE hInstance ) ;     //obsolete!
  18. UINT    WINAPI ibGetCaptionSize( HWND hWnd  ) ;
  19. UINT    WINAPI ibSetCaptionSize( HWND hWnd, UINT nSize ) ;
  20. LRESULT WINAPI ibDefWindowProc( HWND hWnd, UINT uiMsg, WPARAM wParam, LPARAM lParam ) ;
  21. VOID    WINAPI ibAdjustWindowRect( HWND hWnd, LPRECT lprc ) ;
  22.  
  23. #endif
  24.  
  25. #ifndef _RGB_H_
  26. #define _RGB_H_
  27.  
  28.    #define RGBBLACK     RGB(0,0,0)
  29.    #define RGBRED       RGB(128,0,0)
  30.    #define RGBGREEN     RGB(0,128,0)
  31.    #define RGBBLUE      RGB(0,0,128)
  32.    #define RGBBROWN     RGB(128,128,0)
  33.    #define RGBMAGENTA   RGB(128,0,128)
  34.    #define RGBCYAN      RGB(0,128,128)
  35.    #define RGBLTGRAY    RGB(192,192,192)
  36.    #define RGBGRAY      RGB(128,128,128)
  37.  
  38.    #define RGBLTRED     RGB(255,0,0)
  39.    #define RGBLTGREEN   RGB(0,255,0)
  40.    #define RGBLTBLUE    RGB(0,0,255)
  41.    #define RGBYELLOW    RGB(255,255,0)
  42.    #define RGBLTMAGENTA RGB(255,0,255)
  43.    #define RGBLTCYAN    RGB(0,255,255)
  44.    #define RGBWHITE     RGB(255,255,255)
  45. #endif
  46.  
  47.  
  48. ////////////////////////////////////////////////////////////////////////
  49. // End of File: itsybits.h
  50. ////////////////////////////////////////////////////////////////////////
  51.  
  52.